home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / programer2 / euclidlib / h / bool next >
Text File  |  1991-08-29  |  162b  |  10 lines

  1. /**** bool.h ****/
  2. /* Defines 'BOOL' as the boolean type - values TRUE and FALSE.
  3.  */
  4.  
  5. #ifndef BOOL
  6.   #define BOOL int
  7.   #define FALSE 0
  8.   #define TRUE  1
  9. #endif
  10.